home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Report Writers / Crystal Repot 9.0 Full CD version / Setup.exe / Windows / System32 / HTMLRE90.DLL / HTML / 11677 < prev    next >
Encoding:
Text File  |  2002-07-05  |  1.3 KB  |  40 lines

  1.         <SCRIPT>
  2.  
  3.         function WriteMonthX()
  4.         {
  5.             document.writeln(L_WhereX); 
  6.             document.writeln('<SELECT class="menuFormElement" NAME="Day3">');
  7.             document.writeln('<OPTION VALUE="0" SELECTED>' + L_Monday);
  8.             document.writeln('<OPTION VALUE="1">' + L_Tuesday);
  9.             document.writeln('<OPTION VALUE="2">' + L_Wednesday);
  10.             document.writeln('<OPTION VALUE="3">' + L_Thursday);
  11.             document.writeln('<OPTION VALUE="4">' + L_Friday);
  12.             document.writeln('<OPTION VALUE="5">' + L_Saturday);
  13.             document.writeln('<OPTION VALUE="6">' + L_Sunday);
  14.             document.writeln('</SELECT>'); 
  15.         }
  16.  
  17.         function WriteMonthN()
  18.         {
  19.             document.writeln(L_WhereN);
  20.             document.writeln('<SELECT class="menuFormElement" NAME="Day2">'); 
  21.             document.writeln('<OPTION VALUE="1">' + L_First); 
  22.             document.writeln('<OPTION VALUE="2">' + L_Second); 
  23.             document.writeln('<OPTION VALUE="3">' + L_Third); 
  24.             document.writeln('<OPTION VALUE="4">' + L_Fourth); 
  25.             document.writeln('<OPTION SELECTED VALUE="5">' + L_Fifth); 
  26.             document.writeln('</SELECT>'); 
  27.         }
  28.  
  29.         document.writeln('<table width="100%"><tr><td class="list">');
  30.  
  31.         
  32.         WriteMonthN();
  33.         document.writeln('</td><td class="list">');
  34.         WriteMonthX(); 
  35.         
  36.  
  37.         document.writeln('</td></tr></table>');
  38.  
  39.         </SCRIPT> 
  40.